home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-06-14 | 318 b | 22 lines | [TEXT/CWIE] |
- //Copyright (c) 1997 Aidan Cully
- //All rights reserved.
-
- #ifndef __LINE_H
- #define __LINE_H
-
- #include "CLShape.h"
-
- class TStyle;
-
- class TLine:
- public TShape
- {
- protected:
- short mX1, mY1, mX2, mY2;
- TStyle *mStyle;
- public:
- TLine( TStyle*, short, short, short, short );
- virtual void RenderOn( TDrawSlate* );
- };
-
- #endif